home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / EdPageProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-06-09  |  4.7 KB  |  122 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  26. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  27.  
  28. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  29.  
  30. <!DOCTYPE dialog SYSTEM "chrome://editor/locale/EditorPageProperties.dtd">
  31.  
  32. <dialog title="&windowTitle.label;"
  33.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.         onload="Startup();"
  35.         ondialogaccept="return onAccept();"
  36.         ondialogcancel="return onCancel();">
  37.  
  38.   <!-- Methods common to all editor dialogs -->
  39.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdPageProps.js"/>
  42.   <script type="application/x-javascript" src="chrome://editor/content/editorTemplates.js"/>
  43.   <script type="application/x-javascript" src="chrome://communicator/content/XPCNativeWrapper.js"/>
  44.  
  45.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  46.   <broadcaster id="args" value=""/>
  47.   <vbox>
  48.     <groupbox>
  49.       <caption label="&general.label;"/>
  50.       <grid>
  51.         <columns><column flex="1"/><column flex="2"/></columns>
  52.         <rows>
  53.           <row>
  54.             <label value="&location.label;"/>
  55.             <label value="&locationNewPage.label;" id="PageLocation"/>
  56.           </row>
  57.           <row>
  58.             <label value="&lastModified.label;"/>
  59.             <label id="PageModDate"/>
  60.           </row>
  61.           <spacer class="spacer"/>
  62.           <row align="center">
  63.             <label value="&titleInput.label;" accesskey="&titleInput.accessKey;" control="TitleInput"/>
  64.             <textbox class="MinWidth20em" id="TitleInput" oninput="TextboxChanged(this.id)"/>
  65.           </row>
  66.           <row align="center">
  67.             <label value="&authorInput.label;" accesskey="&authorInput.accessKey;" control="AuthorInput"/>
  68.             <textbox class="MinWidth20em" id="AuthorInput" oninput="TextboxChanged(this.id)"/>
  69.           </row>
  70.           <row align="center">
  71.             <label value="&descriptionInput.label;" accesskey="&descriptionInput.accessKey;" control="DescriptionInput"/>
  72.             <textbox class="MinWidth20em" id="DescriptionInput" oninput="TextboxChanged(this.id)"/>
  73.           </row>
  74.         </rows>
  75.       </grid>
  76.     </groupbox>
  77.     <groupbox>
  78.       <caption label="&template.label;"/>
  79.       <vbox>
  80.         <checkbox label="&templateCheckbox.label;"
  81.                   id="isTemplate"/>
  82.         <label value="&fromTemplate.label;"
  83.                   id="isFromTemplate"/>
  84.       </vbox>
  85.     </groupbox>
  86.     <groupbox>
  87.       <caption label="&i18nHeader;"/>
  88.       <grid>
  89.         <columns><column/><column/><column/></columns>
  90.         <rows>
  91.           <row align="center">
  92.             <label value="&language.label;"/>
  93.             <textbox value="" id="active_languages"/>
  94.             <button label="Choose a language"
  95.                     oncommand="ChooseLanguage()"/>
  96.           </row>
  97.           <row align="center">
  98.             <label value="&writingDirection.label;"/>
  99.             <menulist id="useCustomDirection">
  100.               <menupopup>
  101.                 <menuitem id="DefaultDirectionRadio"
  102.                     value="none" 
  103.                     label="&defaultDirectionRadio.label;"/>
  104.                 <menuitem id="LTRDirectionRadio" 
  105.                     value="ltr" label="<rDirectionRadio.label;"/>
  106.                 <menuitem id="RTLDirectionRadio" 
  107.                     value="rtl" label="&rtlDirectionRadio.label;"/>
  108.               </menupopup>
  109.             </menulist>
  110.           </row>
  111.         </rows>
  112.       </grid>
  113.     </groupbox>
  114.     <spacer class="bigspacer"/>
  115.     <groupbox>
  116.       <caption label="&EditHEADSource1.label;"/>
  117.       <description class="wrap" flex="1">&EditHEADSource2.label;</description>
  118.     </groupbox>
  119.   </vbox>
  120.   <separator class="groove"/>
  121. </dialog>
  122.